.pricing.section-padding {
    padding: 60px 0; /* لإضافة مساحة علوية وسفلية للقسم */
    background-color: #F4F4F4; /* خلفية خفيفة */
    font-family: Arial, sans-serif;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #0C2B4E; /* لون نص العنوان الداكن */
    margin-bottom: 10px;
}

.section-description {
    font-size: 1rem;
    color: #6c757d; /* لون رمادي للنص الوصفي */
    max-width: 600px;
    margin: 0 auto 30px;
}

/* --- تنسيقات بطاقة التسعير (Pricing Card) --- */
.pricing-card {
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 40px 20px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05); /* ظل خفيف */
    height: 100%; /* لضمان تساوي الارتفاعات */
    display: flex;
    flex-direction: column;
}

/* --- تنسيقات العنوان والسعر --- */
.plan-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #191b36;
    margin-bottom: 20px;
}

.plan-price {
    font-size: 3rem;
    font-weight: 700;
    color: #1D546C; /* اللون الأخضر الفاتح للسعر */
    margin-bottom: 30px;
    line-height: 1;
}

.plan-price .price-currency {
    font-size: 1.5rem;
    vertical-align: top;
    font-weight: 400;
    margin-right: 5px;
}

/* --- تنسيقات قائمة الميزات --- */
.plan-features {
    padding: 0;
    margin-bottom: 35px;
    color: #6c757d;
    font-size: 0.95rem;
    flex-grow: 1; /* لدفع الزر إلى الأسفل */
}

.plan-features li {
    padding: 5px 0;
}

/* --- تنسيقات الأزرار (Buttons) --- */

/* الزر الأخضر الممتلئ (لخطة Standard) */
.btn-success {
    background-color: #1D546C; /* لون خلفية الزر */
    border-color: #1D546C;
    color: #ffffff;
    padding: 10px 30px;
    text-transform: uppercase;
    font-weight: 600;
    border-radius: 5px;
}

/* زر الإطار الخارجي (لخطط Free و Business) */
.btn-outline-success {
    color: #1D546C;
    border-color: #1D546C;
    background-color: transparent;
    padding: 10px 30px;
    text-transform: uppercase;
    font-weight: 600;
    border-radius: 5px;
}

.btn-outline-success:hover, .btn-success:hover {
    opacity: 0.8;
}